home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / imengv3.41p2.lha / ImEngV3.41p2 / Notes / DeInterlace.notes < prev    next >
Text File  |  1999-10-15  |  1KB  |  76 lines

  1.  
  2.  
  3. Image Engineer script - DeInterlace v1.00
  4.  
  5.  
  6.  
  7. SHORT DESCRIPTION
  8.  
  9.   This script will seperate image from interlaced image
  10.   line by line, producing 2 new images.
  11.  
  12.  
  13. REQUIREMENTS
  14.  
  15.   Image Engineer v3.41 (Wision release 2)
  16.  
  17.  
  18. INSTALLATION
  19.  
  20.   This script belongs to Image Engineer distribution, so it
  21.   should allready be in IE:Arexx/, where it belongs.
  22.  
  23.  
  24. USAGE
  25.  
  26.   Activate window of an image to deinterlace and run the script.
  27.  
  28.  
  29. ARGUMENTS
  30.  
  31.  
  32.   DeInterlace.rexx <pic>
  33.  
  34.   <pic> is name of a picture (in IE)
  35.  
  36.  
  37.  
  38.   AmigaDOS:
  39.  
  40.     Sys:Rexxc/RX DeInterlace.rexx <arguments>
  41.     Sys:Rexxc/RX DeInterlace.rexx 001_testpic.iff
  42.  
  43.  
  44.  
  45.   Other scripts:
  46.  
  47.     ADDRESS COMMAND "Sys:Rexxc/RX IE:Arexx/DeInterlace.rexx <arguments>"
  48.  
  49.  
  50.     Both versions above return you the names of these new pictures
  51.     in same variables.
  52.  
  53.     1.
  54.  
  55.       PROJECT_LIST
  56.       Parse result xyz pic sec .
  57.  
  58.     2.
  59.  
  60.       PROJECT_LIST
  61.       xyz=result
  62.       pic=subword(xyz,1,1)
  63.       sec=subword(xyz,2,1)
  64.  
  65.  
  66.  
  67.  
  68.  
  69. HISTORY
  70.  
  71.   1.00
  72.  
  73.   History started
  74.  
  75.  
  76.